projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5885633
)
(rmail-summary-delete-forward): Force the
author
Richard M. Stallman
<rms@gnu.org>
Mon, 19 May 1997 01:05:13 +0000
(
01:05
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Mon, 19 May 1997 01:05:13 +0000
(
01:05
+0000)
argument to be a number, since we may be called with nil.
lisp/mail/rmailsum.el
patch
|
blob
|
history
diff --git
a/lisp/mail/rmailsum.el
b/lisp/mail/rmailsum.el
index 4a7dd67b0829795364840722b1b08b46c2d983bc..6081062dde65bed2806658bea7594fc374973d8f 100644
(file)
--- a/
lisp/mail/rmailsum.el
+++ b/
lisp/mail/rmailsum.el
@@
-582,6
+582,7
@@
Deleted messages stay in the file until the \\[rmail-expunge] command is given.
A prefix argument serves as a repeat count;
a negative argument means to delete and move backward."
(interactive "p")
+ (unless (numberp count) (setq count 1))
(let (end del-msg
(backward (< count 0)))
(while (/= count 0)